'Declaration
Public Overloads Overrides Sub Write( _
ByVal buffer() As System.Byte, _
ByVal offset As System.Integer, _
ByVal count As System.Integer _
)
An array of bytes. This method copies count bytes from buffer to the current stream.
offset
The zero-based byte offset in buffer at which to begin copying bytes to the current stream.
count
The number of bytes to be written to the current stream.
Exceptions
Exception
Description
System.NotSupportedException
This stream does not support writing.
Remarks
In order to provide faster read/write, this operation doesn't check stream bound. A client must carefully not read/write above the size of this datastream.